home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / Real / gui / realprefs_temp.c next >
Encoding:
C/C++ Source or Header  |  1996-03-25  |  765 b   |  45 lines

  1. /* This file contains empty template routines that
  2.  * the IDCMP handler will call uppon. Fill out these
  3.  * routines with your code or use them as a reference
  4.  * to create your program.
  5.  */
  6.  
  7. #define FALSE    0
  8. #define    TRUE !FALSE
  9.  
  10. int Gadget00Clicked( void )
  11. {
  12.     /* routine when gadget "_Dithering" is clicked. */
  13. }
  14.  
  15. int Gadget10Clicked( void )
  16. {
  17.     /* routine when gadget "_Save" is clicked. */
  18. }
  19.  
  20. int Gadget20Clicked( void )
  21. {
  22.     /* routine when gadget "_Cancel" is clicked. */
  23. }
  24.  
  25. int Gadget30Clicked( void )
  26. {
  27.     /* routine when gadget "_Use" is clicked. */
  28. }
  29.  
  30. int RealPrefsCloseWindow( void )
  31. {
  32.     /* routine for "IDCMP_CLOSEWINDOW". */
  33. }
  34.  
  35. int main()
  36. {
  37.     SetupScreen();
  38.     OpenRealPrefsWindow();
  39.  
  40.     while(HandleRealPrefsIDCMP());
  41.  
  42.     CloseRealPrefsWindow();
  43.     CloseDownScreen();
  44. }
  45.